home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 15
/
Aminet 15 - Nov 1996.iso
/
Aminet
/
dev
/
basic
/
ace24dist.lha
/
ace24.lha
/
include
/
ace
/
limits.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-10
|
410b
|
17 lines
#ifndef LIMITS_H
#define LIMITS_H 1
/* maxima & minima */
#define MaxInt 2147483647
#define MinInt -2147483648
#define MaxShort 32767
#define MinShort -32767 /* NOT -32768, due to the way ACE
** classifies integers during
** compilation.
*/
#define MaxReal 9.22337177E+18
#define MinReal -9.22337177E+18
#define MAXSTRINGLEN 1024&
#endif